home *** CD-ROM | disk | FTP | other *** search
/ MacWorld UK 2005 May / MW_UK_2005_05.iso / 16 iCal utilities / quickCal.sit / quickCal / quickCal.app / Contents / Resources / Registration.h < prev    next >
Encoding:
Text File  |  2005-01-27  |  722 b   |  34 lines

  1. //
  2. //  Registration.h
  3. //  GolfTracker
  4. //
  5. //  Created by chris struhar on 12/29/04.
  6. //  Copyright 2004 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10.  
  11.  
  12. @interface Registration : NSObject {
  13.     IBOutlet id regCode;
  14.     IBOutlet id regName;
  15.     IBOutlet id regWindow;
  16.     BOOL isReg;
  17.  
  18.     IBOutlet id donWindow;
  19.     IBOutlet id donShowDialog;
  20.     NSUserDefaults *defaults;
  21. }
  22.  
  23. - (BOOL)isRegistered;
  24. - (void)checkRegistered;
  25. - (BOOL)checkSN:(NSString *)forNumber andName:(NSString *)forName andTime:(BOOL)checkTime;
  26. - (IBAction)doRegister:(id)sender;
  27. - (IBAction)registerOK:(id)sender;
  28. - (IBAction)registerCancel:(id)sender;
  29. - (IBAction)goToDonate:(id)sender;
  30. - (void)showDonationBeg;
  31. - (IBAction)closeDonate:(id)sender;
  32.  
  33. @end
  34.